Update README.md

Andrew Cantino преди 11 години
родител
ревизия
9b87532fc0
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -63,7 +63,7 @@ Follow these instructions if you wish to deploy your own version of Huginn or co
63 63
 
64 64
 ## Deployment
65 65
 
66
-Deployment right now is configured with Capistrano, Unicorn, and nginx.  You should feel free to deploy in a different way, however.
66
+Deployment right now is configured with Capistrano, Unicorn, and nginx.  You should feel free to deploy in a different way, however, and please submit your deployment solutions back!
67 67
 
68 68
 ### Required Setup
69 69
 
@@ -71,11 +71,11 @@ In your private copy of Huginn, do the following:
71 71
 
72 72
 * Edit `app/models/user.rb` and change the invitation code(s) in `INVITATION_CODES`.  This controls who can signup to use your installation.
73 73
 * Edit `app/mailers/system_mailer.rb` and set your default from address.
74
-* Edit `config/unicorn/production.rb` and replace instances of *you* with the correct username for your server.
75 74
 * Edit `config/environments/production.rb` and change the value of `DOMAIN` and the `config.action_mailer.smtp_settings` setup, which is currently setup for sending email through a Google Apps account on Gmail.
76 75
 * Setup a place for Huginn to run.  I recommend making a dedicated user on your server for Huginn, but this is not required.  Setup nginx or Apache to proxy pass to unicorn.  There is an example nginx script in `config/nginx/production.conf`.
77 76
 * Setup a production MySQL database for your installation.
78
-* Edit `config/deploy.rb` and change all instances of `you` and `yourdomain` to the appropriate values for your server setup, then run `cap deploy:setup` followed by `cap deploy`.  If everything goes well, this should start some unicorn workers on your server to run the Huginn web app.
77
+* Edit `config/unicorn/production.rb` and replace instances of *you* with the correct username for your server.
78
+* Edit `config/deploy.rb` and change all instances of `you` and `yourdomain` to the appropriate values for your server setup.  If you want RVM to be used, uncomment the appropriate lines.  Then, run `cap deploy:setup` followed by `cap deploy`.  If everything goes well, this should start some unicorn workers on your server to run the Huginn web app.
79 79
 * After deploying with capistrano, SSH into your server, go to the deployment directory, and run `RAILS_ENV=production bundle exec rake db:seed` to generate your admin user.  Immediately login to your new Huginn installation with the username of `admin` and the password of `password` and change your email and password!
80 80
 * You'll need to run bin/schedule.rb and bin/twitter_stream.rb in a daemonized way.  I've just been using screen sessions, but please contribute something better!
81 81